type encoding/json.decodeState

23 uses

	encoding/json (current package)
		decode.go#L101: 	var d decodeState
		decode.go#L168: func (d *decodeState) unmarshal(v any) error {
		decode.go#L208: type decodeState struct {
		decode.go#L220: func (d *decodeState) readIndex() int {
		decode.go#L229: func (d *decodeState) init(data []byte) *decodeState {
		decode.go#L243: func (d *decodeState) saveError(err error) {
		decode.go#L250: func (d *decodeState) addErrorContext(err error) error {
		decode.go#L266: func (d *decodeState) skip() {
		decode.go#L281: func (d *decodeState) scanNext() {
		decode.go#L293: func (d *decodeState) scanWhile(op int) {
		decode.go#L317: func (d *decodeState) rescanLiteral() {
		decode.go#L358: func (d *decodeState) value(v reflect.Value) error {
		decode.go#L403: func (d *decodeState) valueQuoted() any {
		decode.go#L502: func (d *decodeState) array(v reflect.Value) error {
		decode.go#L599: func (d *decodeState) object(v reflect.Value) error {
		decode.go#L833: func (d *decodeState) convertNumber(s string) (any, error) {
		decode.go#L851: func (d *decodeState) literalStore(item []byte, v reflect.Value, fromQuoted bool) error {
		decode.go#L1030: func (d *decodeState) valueInterface() (val any) {
		decode.go#L1047: func (d *decodeState) arrayInterface() []any {
		decode.go#L1073: func (d *decodeState) objectInterface() map[string]any {
		decode.go#L1124: func (d *decodeState) literalInterface() any {
		stream.go#L17: 	d       decodeState